home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __MLABEL_H
- #define __MLABEL_H
-
- #define MLABEL_ID 0x0111
-
- class MLabel : public MWindow {
- protected:
- cArray label;
- public:
- MLabel (int x1, int y1, int x2, int y2, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
- MLabel (const RECT& ABox, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
- virtual void Draw (void);
- virtual inline classType isA (void) {return (MLABEL_ID);};
- virtual void LoadDirect (int fp);
- virtual void SaveDirect (int fp);
- inline virtual void SetLabel (BYTE *NewLabel);
- ~MLabel (void);
- };
-
- #endif
-